home *** CD-ROM | disk | FTP | other *** search
- AngDialog(RequestStr,Default : STRING) : REAL;
-
- Dialog box that requests the user to input an angle
-
- DistDialog(RequestStr,Default : STRING) : REAL;
-
- Dialog box that requests the user to input an distance
-
- IntDialog(RequestStr,Default : STRING) : INTEGER;
-
- Dialog box that requests the user to input an integer number
-
- PtDialog(RequestStr,DefaultX,DefaultY : STRING; X,Y : REAL);
-
- Dialog box that requests the user to input a point X & Y coordinates
-
- RealDialog((RequestStr,Default : STRING) : REAL;
-
- Dialog box that requests the user to input a real number
-
- StrDialog(RequestStr,Default : STRING) : STRING;
-
- Dialog box that requests the user to input a string
-
- YNDialog(RequestStr : STRING) : BOOLEAN;
-
- Dialog box that allows a user to answer a yes/no question
-
- AlrtDialog(Message : STRING);
-
- Dialog box that relays a message to the user
-
- AngDialog3D(DisplayStr,XStr,YStr,ZStr : STRING; VAR XAngle, YAngle, ZAngle : REAL);
-
- Dialog box that allows a user to input the 3D rotation angles of an object
-
- PtDialog3D((DisplayStr,XStr,YStr,ZStr : STRING; VAR XPt, YPt, ZPt : REAL);
-
- Dialog box that allows a user to input the 3D coordinate point
-
- DidCancel : BOOLEAN;
-
- Informs programmer whether the user click the cancel button
-
- BeginDialog(dialogID,dialogType,x1,y1,x2,y2 : INTEGER);
-
- Initiates the custom dialog creation process.
-
- EndDialog;
-
- Terminates the custom dialog creation process.
-
- AddButton(buttonStr : STRING; ItemID,buttonType,x1,y1,x2,y2 : INTEGER);
-
- Creates a button within a custom dialog box.
-
- AddField(fieldStr: STRING; ItemID,fieldType,x1,y1,x2,y2 : INTEGER);
-
- Creates a field within a custom dialog box.
-
- GetDialog(dialogID : INETEGER);
-
- Displays the dialog which has that dialogID number.
-
- ClrDialog;
-
- Closes a custom dialog which is currently displayed.
-
- DialogEvent(VAR item : INTEGER);
-
- Monitors users activity within a custom dialog box.
-
- GetField(fieldID : INTEGER): STRING;
-
- Returns the text located in the text field which has that fieldID number.
-
- SetField(fieldID : INTEGER; str : STRING);
-
- Places text into a custom dialog text field.
-
- SelField(fieldID : INTEGER);
-
- Hilites the text field which has that fieldID number.
-
- SetItem(fieldID : INTEGER; select : BOOLEAN);
-
- Selects or deselects the check box or radio button which has that fieldID number.
-
- ItemSel(fieldID : INTEGER): BOOLEAN;
-
- Returns TRUE if check box or radio button is check on else it returns FALSE
-
- ValidNumStr(str : STRING; VAR value: REAL): BOOLEAN;
-
- Returns TRUE if the string parameter str can be converted into a numeric value, otherwise it returns FALSE.
-
- ValidAngStr(str : STRING; VAR value : REAL) : BOOLEAN;
-
- Returns TRUE if the string parameter str can be converted into a numeric angle value, otherwise it returns FALSE.
-
- GetScreen(VAR x1,y1,x2,y2 : INTEGER);
-
- Returns the top-left and bottom-right corners of the video screen.
-
-